home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 2 / Atari Mega Archive CD - Volume 2.iso / linux / announce / 9pl3 < prev    next >
Text File  |  1995-04-22  |  3KB  |  83 lines

  1. This message announces the availability of version 0.9.3 of Linux/68k.
  2.  
  3. It can be ftped from directory /pub/linux/680x0 at tsx-11.mit.edu.
  4.  
  5. A precompiled kernel executable can be found in vmlinux-0.09pl3.gz in
  6. the "kernel" subdirectory.
  7.  
  8. The corresponding "bootstrap" program for the Amiga is available in
  9. file amiboot-1.9.gz in the "kernel" subdirectory.  This is a new
  10. version which allows one to specify how much memory there is and where
  11. it is.  Instructions for this procedure can be found at the bottom of
  12. this message.
  13.  
  14. If available, the "bootstrap" program for the Atari will be found in
  15. file "ataboot-0.2.gz" in the "kernel" subdirectory (the author of this
  16. ANNOUNCE-* file cannot compile such a "bootstrap" program and thus is
  17. waiting for one from someone else).
  18.  
  19. The source patch for the this version of the kernel can be found in
  20. linux-0.9.pl3.diff.gz in the "src" subdirectory.
  21.  
  22. The changes in this release against 0.9:
  23.  
  24.  - Fixes to the Amiga serial port driver to fix 8 bit input and to
  25.    reduce serial overruns somewhat.
  26.  
  27.  - Lots of bug fixes from various sources (Thanks folks!).
  28.  
  29.  - Inclusion of the Linux-1.0.9 networking software, with appropriate
  30.    patches for bigendian/m680x0 support.  The only devices currently
  31.    supported are loopback, slip and compressed-slip.  
  32.  
  33.  - Scatter-gather support added to the WD33C93 SCSI driver and the
  34.    A3000 SCSI driver.  It is not yet written for the A2091 or GVP
  35.    Series II drivers.  People with an A2091 or GVP Series II
  36.    controller can change the drivers for those to support it and send
  37.    me the patches.
  38.  
  39. The precompiled kernel executable includes an Atari configuration, so
  40. if you are using an Amiga, you will probably want to reconfigure and
  41. recompile the kernel to exclude the Atari sources.  Similarly, if you
  42. are using an Atari, you will probably want to reconfigure and
  43. recompile the kernel to exclude the Amiga sources.  Heck, you'll want
  44. to reconfigure anyway, to remove the drivers you don't want, so that
  45. you'll have a lean and mean kernel.
  46.  
  47. Further hints and installation instructions should be gleaned from the
  48. older ANNOUNCE-* files found in the same directory as this one.
  49.  
  50. Note also that binary distribution of various GNU and Linux source
  51. packages are available from the "bin" subdirectory of the 680x0
  52. archive on tsx-11.mit.edu.
  53. ----------------------------------------------------------------------
  54. amiboot-1.9 instructions:
  55.  
  56.   To specify to the Linux kernel how much memory you have, you need to
  57.   create a file containing the information, and then provide the:
  58.            -m <filename>
  59.   argument to bootstrap when booting.
  60.  
  61.   The format for the file is:
  62.  
  63.       chipramsize
  64.       [0xfastchunkaddr fastchunksize]
  65.       [0xfastchunkaddr fastchunksize]
  66.       ...
  67.  
  68.  
  69.   For example, if you don't want Linux to use your 2nd meg of chipram,
  70.   you would create a file that looks contains only:
  71.  
  72.     1048576
  73.  
  74.   If you had 1M of chip ram, 2M of 16 bit FAST ram at address 0x200000
  75.   and 16M of 32 bit FAST ram at address 0x80000000, and you didn't
  76.   want Linux to use the slow 16 bit FAST ram, you'd create a file that
  77.   looks like:
  78.  
  79.       1048576
  80.       0x80000000 16777216
  81.  
  82.  
  83.